fix(ci): update Python paths after v1 → archive/v1 reorganization#489
Closed
schwarztim wants to merge 2 commits into
Closed
fix(ci): update Python paths after v1 → archive/v1 reorganization#489schwarztim wants to merge 2 commits into
schwarztim wants to merge 2 commits into
Conversation
ruvnet
approved these changes
May 17, 2026
Owner
ruvnet
left a comment
There was a problem hiding this comment.
Necessary plumbing fix — without this, the Python CI jobs fail looking for /src and /tests at root after the v1 → archive/v1 archive move. Diff is mechanical: each workflow gets the path prefix updated, no behavioural change. Merging.
Owner
|
Closing as superseded — the same archive/v1 path correction was applied to .github/workflows/ci.yml and security-scan.yml on main (with added |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
Commit
81cc241bmovedv1/toarchive/v1/. Two CI workflow files still reference the oldsrc/andtests/paths, which makes their early steps fail on every push to main and every PR:Code Quality & Securityjob (ci.yml): Black, flake8, mypy, and bandit all error withPath 'src/' does not exist.Static Application Security Testing(security-scan.yml): bandit and semgrep error similarly.Tests (3.10) / (3.11) / (3.12)getting CANCELLED via job dependencies.Result: every PR shows ~10 failed checks regardless of correctness.
Changes
.github/workflows/ci.yml— point Python tooling atarchive/v1/src/+archive/v1/tests/.github/workflows/security-scan.yml— point bandit/semgrep atarchive/v1/src/[Unreleased]Verification
Workflows are YAML-only changes; structural correctness is the test. After merge:
Note: this PR does not touch any application code.